home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / BNU22DC.ZIP / docs / binutils / ld.i2 (.txt) < prev    next >
GNU Info File  |  1993-09-06  |  29KB  |  595 lines

  1. This is Info file ld.info, produced by Makeinfo-1.52 from the input
  2. file ./ld.texinfo.
  3. START-INFO-DIR-ENTRY
  4. * Ld: (ld).            The GNU linker.
  5. END-INFO-DIR-ENTRY
  6.    This file documents the GNU linker LD.
  7.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.    Permission is granted to copy and distribute modified versions of
  12. this manual under the conditions for verbatim copying, provided also
  13. that the entire resulting derived work is distributed under the terms
  14. of a permission notice identical to this one.
  15.    Permission is granted to copy and distribute translations of this
  16. manual into another language, under the above conditions for modified
  17. versions.
  18. File: ld.info,  Node: BFD,  Next: MRI,  Prev: Commands,  Up: Top
  19.    The linker accesses object and archive files using the BFD libraries.
  20. These libraries allow the linker to use the same routines to operate on
  21. object files whatever the object file format.  A different object file
  22. format can be supported simply by creating a new BFD back end and adding
  23. it to the library.  You can use `objdump -i' (*note objdump:
  24. (binutils.info)objdump.) to list all the formats available for each
  25. architecture under BFD.  This was the list of formats, and of
  26. architectures supported for each format, as of the time this manual was
  27. prepared:
  28.      BFD header file version 0.18
  29.      a.out-i386
  30.       (header big endian, data big endian)
  31.        m68k:68020
  32.        a29k
  33.        sparc
  34.        i386
  35.      a.out-sunos-big
  36.       (header big endian, data big endian)
  37.        m68k:68020
  38.        a29k
  39.        sparc
  40.        i386
  41.      b.out.big
  42.       (header big endian, data little endian)
  43.        i960:core
  44.      b.out.little
  45.       (header little endian, data little endian)
  46.        i960:core
  47.      coff-a29k-big
  48.       (header big endian, data big endian)
  49.        a29k
  50.      coff-h8300
  51.       (header big endian, data big endian)
  52.        H8/300
  53.      coff-i386
  54.       (header little endian, data little endian)
  55.        i386
  56.      coff-Intel-big
  57.       (header big endian, data little endian)
  58.        i960:core
  59.      coff-Intel-little
  60.       (header little endian, data little endian)
  61.        i960:core
  62.      coff-m68k
  63.       (header big endian, data big endian)
  64.        m68k:68020
  65.      coff-m88kbcs
  66.       (header big endian, data big endian)
  67.        m88k:88100
  68.      ecoff-bigmips
  69.       (header big endian, data big endian)
  70.        mips
  71.      ecoff-littlemips
  72.       (header little endian, data little endian)
  73.        mips
  74.      elf-big
  75.       (header big endian, data big endian)
  76.        m68k:68020
  77.        vax
  78.        i960:core
  79.        a29k
  80.        sparc
  81.        mips
  82.        i386
  83.        m88k:88100
  84.        H8/300
  85.        rs6000:6000
  86.      elf-little
  87.       (header little endian, data little endian)
  88.        m68k:68020
  89.        vax
  90.        i960:core
  91.        a29k
  92.        sparc
  93.        mips
  94.        i386
  95.        m88k:88100
  96.        H8/300
  97.        rs6000:6000
  98.      ieee
  99.       (header big endian, data big endian)
  100.        m68k:68020
  101.        vax
  102.        i960:core
  103.        a29k
  104.        sparc
  105.        mips
  106.        i386
  107.        m88k:88100
  108.        H8/300
  109.        rs6000:6000
  110.      srec
  111.       (header big endian, data big endian)
  112.        m68k:68020
  113.        vax
  114.        i960:core
  115.        a29k
  116.        sparc
  117.        mips
  118.        i386
  119.        m88k:88100
  120.        H8/300
  121.        rs6000:6000
  122.    As with most implementations, BFD is a compromise between several
  123. conflicting requirements. The major factor influencing BFD design was
  124. efficiency: any time used converting between formats is time which
  125. would not have been spent had BFD not been involved. This is partly
  126. offset by abstraction payback; since BFD simplifies applications and
  127. back ends, more time and care may be spent optimizing algorithms for a
  128. greater speed.
  129.    One minor artifact of the BFD solution which you should bear in mind
  130. is the potential for information loss.  There are two places where
  131. useful information can be lost using the BFD mechanism: during
  132. conversion and during output. *Note BFD information loss::.
  133. * Menu:
  134. * BFD outline::                 How it works: an outline of BFD
  135. * BFD information loss::        Information Loss
  136. * Mechanism::                   Mechanism
  137. File: ld.info,  Node: BFD outline,  Next: BFD information loss,  Up: BFD
  138. How it works: an outline of BFD
  139. ===============================
  140.    When an object file is opened, BFD subroutines automatically
  141. determine the format of the input object file, and build a descriptor in
  142. memory with pointers to routines that will be used to access elements of
  143. the object file's data structures.
  144.    As different information from the the object files is required, BFD
  145. reads from different sections of the file and processes them.  For
  146. example, a very common operation for the linker is processing symbol
  147. tables.  Each BFD back end provides a routine for converting between
  148. the object file's representation of symbols and an internal canonical
  149. format. When the linker asks for the symbol table of an object file, it
  150. calls through the memory pointer to the BFD back end routine which
  151. reads and converts the table into a canonical form.  The linker then
  152. operates upon the common form. When the link is finished and the linker
  153. writes the symbol table of the output file, another BFD back end
  154. routine is called which takes the newly created symbol table and
  155. converts it into the chosen output format.
  156. File: ld.info,  Node: BFD information loss,  Next: Mechanism,  Prev: BFD outline,  Up: BFD
  157. Information Loss
  158. ================
  159.    *Information can be lost during output.* The output formats
  160. supported by BFD do not provide identical facilities, and information
  161. which may be described in one form has nowhere to go in another format.
  162. One example of this is alignment information in `b.out'. There is
  163. nowhere in an `a.out' format file to store alignment information on the
  164. contained data, so when a file is linked from `b.out' and an `a.out'
  165. image is produced, alignment information will not propagate to the
  166. output file. (The linker will still use the alignment information
  167. internally, so the link is performed correctly).
  168.    Another example is COFF section names. COFF files may contain an
  169. unlimited number of sections, each one with a textual section name. If
  170. the target of the link is a format which does not have many sections
  171. (e.g., `a.out') or has sections without names (e.g., the Oasys format)
  172. the link cannot be done simply. You can circumvent this problem by
  173. describing the desired input-to-output section mapping with the command
  174. language.
  175.    *Information can be lost during canonicalization.* The BFD internal
  176. canonical form of the external formats is not exhaustive; there are
  177. structures in input formats for which there is no direct representation
  178. internally.  This means that the BFD back ends cannot maintain all
  179. possible data richness through the transformation between external to
  180. internal and back to external formats.
  181.    This limitation is only a problem when using the linker to read one
  182. format and write another. Each BFD back end is responsible for
  183. maintaining as much data as possible, and the internal BFD canonical
  184. form has structures which are opaque to the BFD core, and exported only
  185. to the back ends. When a file is read in one format, the canonical form
  186. is generated for BFD and the linker. At the same time, the back end
  187. saves away any information which would otherwise be lost. If the data
  188. is then written back in the same format, the back end routine will be
  189. able to use the canonical form provided by the BFD core as well as the
  190. information it prepared earlier.  Since there is a great deal of
  191. commonality between back ends, there is no information lost when
  192. linking big endian COFF to little endian COFF, or from `a.out' to
  193. `b.out'.  When a mixture of formats is linked, the information is only
  194. lost from the files whose format differs from the destination.
  195. File: ld.info,  Node: Mechanism,  Prev: BFD information loss,  Up: BFD
  196. Mechanism
  197. =========
  198.    The greatest potential for loss of information occurs when there is
  199. the least overlap between the information provided by the source
  200. format, that stored by the canonical format, and that needed by the
  201. destination format. A brief description of the canonical form may help
  202. you understand which kinds of data you can count on preserving across
  203. conversions.
  204. *files*
  205.      Information on target machine architecture, particular
  206.      implementation, and format type are stored on a per-file basis.
  207.      Other information includes a demand pagable bit and a write
  208.      protected bit.  Information like Unix magic numbers is not stored
  209.      here--only the magic numbers' meaning, so a `ZMAGIC' file would
  210.      have both the demand pagable bit and the write protected text bit
  211.      set.
  212.      The byte order of the target is stored on a per-file basis, so
  213.      that big- and little-endian object files may be linked with one
  214.      another.
  215. *sections*
  216.      Each section in the input file contains the name of the section,
  217.      the original address in the object file, various options, size and
  218.      alignment information and pointers into other BFD data structures.
  219. *symbols*
  220.      Each symbol contains a pointer to the object file which originally
  221.      defined it, its name, its value, and various option bits.  When a
  222.      BFD back end reads in a symbol table, the back end relocates all
  223.      symbols to make them relative to the base of the section where
  224.      they were defined.  Doing this ensures that each symbol points to
  225.      its containing section.  Each symbol also has a varying amount of
  226.      hidden private data for the BFD back end.  Since the symbol points
  227.      to the original file, the private data format for that symbol is
  228.      accessible.  `ld' can operate on a collection of symbols of wildly
  229.      different formats without problems.
  230.      Normal global and simple local symbols are maintained on output,
  231.      so an output file (no matter its format) will retain symbols
  232.      pointing to functions and to global, static, and common variables.
  233.      Some symbol information is not worth retaining; in `a.out', type
  234.      information is stored in the symbol table as long symbol names.
  235.      This information would be useless to most COFF debuggers and may
  236.      be thrown away with appropriate command line switches. (The GNU
  237.      debugger `gdb' does support `a.out' style debugging information in
  238.      COFF).
  239.      There is one word of type information within the symbol, so if the
  240.      format supports symbol type information within symbols (for
  241.      example, COFF, IEEE, Oasys) and the type is simple enough to fit
  242.      within one word (nearly everything but aggregates), the
  243.      information will be preserved.
  244. *relocation level*
  245.      Each canonical BFD relocation record contains a pointer to the
  246.      symbol to relocate to, the offset of the data to relocate, the
  247.      section the data is in, and a pointer to a relocation type
  248.      descriptor. Relocation is performed by passing messages through
  249.      the relocation type descriptor and the symbol pointer. Therefore,
  250.      relocations can be performed on output data using a relocation
  251.      method that is only available in one of the input formats. For
  252.      instance, Oasys provides a byte relocation format.  A relocation
  253.      record requesting this relocation type would point indirectly to a
  254.      routine to perform this, so the relocation may be performed on a
  255.      byte being written to a COFF file, even though 68k COFF has no
  256.      such relocation type.
  257. *line numbers*
  258.      Object formats can contain, for debugging purposes, some form of
  259.      mapping between symbols, source line numbers, and addresses in the
  260.      output file.  These addresses have to be relocated along with the
  261.      symbol information.  Each symbol with an associated list of line
  262.      number records points to the first record of the list.  The head
  263.      of a line number list consists of a pointer to the symbol, which
  264.      allows finding out the address of the function whose line number
  265.      is being described. The rest of the list is made up of pairs:
  266.      offsets into the section and line numbers. Any format which can
  267.      simply derive this information can pass it successfully between
  268.      formats (COFF, IEEE and Oasys).
  269. File: ld.info,  Node: MRI,  Next: Index,  Prev: BFD,  Up: Top
  270. MRI Compatible Script Files
  271. ***************************
  272.    To aid users making the transition to GNU `ld' from the MRI linker,
  273. `ld' can use MRI compatible linker scripts as an alternative to the
  274. more general-purpose linker scripting language described in *Note
  275. Command Language: Commands.  MRI compatible linker scripts have a much
  276. simpler command set than the scripting language otherwise used with
  277. `ld'.  GNU `ld' supports the most commonly used MRI linker commands;
  278. these commands are described here.
  279.    You can specify a file containing an MRI-compatible script using the
  280. `-c' command-line option.
  281.    Each command in an MRI-compatible script occupies its own line; each
  282. command line starts with the keyword that identifies the command (though
  283. blank lines are also allowed for punctuation).  If a line of an
  284. MRI-compatible script begins with an unrecognized keyword, `ld' issues
  285. a warning message, but continues processing the script.
  286.    Lines beginning with `*' are comments.
  287.    You can write these commands using all upper-case letters, or all
  288. lower case; for example, `chip' is the same as `CHIP'.  The following
  289. list shows only the upper-case form of each command.
  290. `ABSOLUTE SECNAME'
  291. `ABSOLUTE SECNAME, SECNAME, ... SECNAME'
  292.      Normally, `ld' includes in the output file all sections from all
  293.      the input files.  However, in an MRI-compatible script, you can
  294.      use the `ABSOLUTE' command to restrict the sections that will be
  295.      present in your output program.  If the `ABSOLUTE' command is used
  296.      at all in a script, then only the sections named explicitly in
  297.      `ABSOLUTE' commands will appear in the linker output.  You can
  298.      still use other input sections (whatever you select on the command
  299.      line, or using `LOAD') to resolve addresses in the output file.
  300. `ALIAS OUT-SECNAME, IN-SECNAME'
  301.      Use this command to place the data from input section IN-SECNAME
  302.      in a section called OUT-SECNAME in the linker output file.
  303.      IN-SECNAME may be an integer.
  304. `BASE EXPRESSION'
  305.      Use the value of EXPRESSION as the lowest address (other than
  306.      absolute addresses) in the output file.
  307. `CHIP EXPRESSION'
  308. `CHIP EXPRESSION, EXPRESSION'
  309.      This command does nothing; it is accepted only for compatibility.
  310. `END'
  311.      This command does nothing whatever; it's only accepted for
  312.      compatibility.
  313. `FORMAT OUTPUT-FORMAT'
  314.      Similar to the `OUTPUT_FORMAT' command in the more general linker
  315.      language, but restricted to one of these output formats:
  316.        1. S-records, if OUTPUT-FORMAT is `S'
  317.        2. IEEE, if OUTPUT-FORMAT is `IEEE'
  318.        3. COFF (the `coff-m68k' variant in BFD), if OUTPUT-FORMAT is
  319.           `COFF'
  320. `LIST ANYTHING...'
  321.      Print (to the standard output file) a link map, as produced by the
  322.      `ld' command-line option `-M'.
  323.      The keyword `LIST' may be followed by anything on the same line,
  324.      with no change in its effect.
  325. `LOAD FILENAME'
  326. `LOAD FILENAME, FILENAME, ... FILENAME'
  327.      Include one or more object file FILENAME in the link; this has the
  328.      same effect as specifying FILENAME directly on the `ld' command
  329.      line.
  330. `NAME OUTPUT-NAME'
  331.      OUTPUT-NAME is the name for the program produced by `ld'; the
  332.      MRI-compatible command `NAME' is equivalent to the command-line
  333.      option `-o' or the general script language command `OUTPUT'.
  334. `ORDER SECNAME, SECNAME, ... SECNAME'
  335. `ORDER SECNAME SECNAME SECNAME'
  336.      Normally, `ld' orders the sections in its output file in the order
  337.      in which they first appear in the input files.  In an
  338.      MRI-compatible script, you can override this ordering with the
  339.      `ORDER' command.  The sections you list with `ORDER' will appear
  340.      first in your output file, in the order specified.
  341. `PUBLIC NAME=EXPRESSION'
  342. `PUBLIC NAME,EXPRESSION'
  343. `PUBLIC NAME EXPRESSION'
  344.      Supply a value (EXPRESSION) for external symbol NAME used in the
  345.      linker input files.
  346. `SECT SECNAME, EXPRESSION'
  347. `SECT SECNAME=EXPRESSION'
  348. `SECT SECNAME EXPRESSION'
  349.      You can use any of these three forms of the `SECT' command to
  350.      specify the start address (EXPRESSION) for section SECNAME.  If
  351.      you have more than one `SECT' statement for the same SECNAME, only
  352.      the *first* sets the start address.
  353. File: ld.info,  Node: Index,  Prev: MRI,  Up: Top
  354. Index
  355. *****
  356. * Menu:
  357. * ":                                    Symbols.
  358. * ( COMMON ):                           Section Contents.
  359. * *(SECTION):                           Section Contents.
  360. * -b FORMAT:                            Invocation.
  361. * -Bstatic:                             Invocation.
  362. * -c MRI-CMDFILE:                       Invocation.
  363. * -d:                                   Invocation.
  364. * -dc:                                  Invocation.
  365. * -defsym SYMBOL=EXP:                   Invocation.
  366. * -dp:                                  Invocation.
  367. * -e ENTRY:                             Invocation.
  368. * -F:                                   Invocation.
  369. * -format:                              Invocation.
  370. * -g:                                   Invocation.
  371. * -i:                                   Invocation.
  372. * -lAR:                                 Invocation.
  373. * -LDIR:                                Invocation.
  374. * -m:                                   Invocation.
  375. * -M:                                   Invocation.
  376. * -n:                                   Invocation.
  377. * -N:                                   Invocation.
  378. * -noinhibit-exec:                      Invocation.
  379. * -o OUTPUT:                            Invocation.
  380. * -r:                                   Invocation.
  381. * -R FILE:                              Invocation.
  382. * -relax:                               Invocation.
  383. * -S:                                   Invocation.
  384. * -s:                                   Invocation.
  385. * -t:                                   Invocation.
  386. * -T SCRIPT:                            Invocation.
  387. * -Tbss BSSORG:                         Invocation.
  388. * -Tdata DATAORG:                       Invocation.
  389. * -Ttext TEXTORG:                       Invocation.
  390. * -u SYM:                               Invocation.
  391. * -Ur:                                  Invocation.
  392. * -v:                                   Invocation.
  393. * -X:                                   Invocation.
  394. * -x:                                   Invocation.
  395. * -ySYMBOL:                             Invocation.
  396. * .:                                    Location Counter.
  397. * 0x:                                   Integers.
  398. * ;:                                    Assignment.
  399. * =FILL:                                Section Options.
  400. * >REGION:                              Section Options.
  401. * ABSOLUTE (MRI):                       MRI.
  402. * ALIAS (MRI):                          MRI.
  403. * BASE (MRI):                           MRI.
  404. * CHIP (MRI):                           MRI.
  405. * END (MRI):                            MRI.
  406. * FORMAT (MRI):                         MRI.
  407. * LIST (MRI):                           MRI.
  408. * LOAD (MRI):                           MRI.
  409. * NAME (MRI):                           MRI.
  410. * ORDER (MRI):                          MRI.
  411. * PUBLIC (MRI):                         MRI.
  412. * SECT (MRI):                           MRI.
  413. * FILENAME:                             Section Contents.
  414. * FILENAME(SECTION):                    Section Contents.
  415. * SYMBOL = EXPRESSION ;:                Section Contents.
  416. * SYMBOL F= EXPRESSION ;:               Section Contents.
  417. * { SCRIPT }:                           Invocation.
  418. * absolute and relocatable symbols:     Assignment.
  419. * ABSOLUTE(EXP):                        Built-ins.
  420. * ADDR(SECTION):                        Built-ins.
  421. * ALIGN(EXP):                           Built-ins.
  422. * aligning sections:                    Section Options.
  423. * allocating memory:                    MEMORY.
  424. * architectures available:              BFD.
  425. * archive files, from cmd line:         Invocation.
  426. * arithmetic:                           Expressions.
  427. * arithmetic operators:                 Operators.
  428. * assignment in scripts:                Assignment.
  429. * assignment, in section defn:          Section Contents.
  430. * back end:                             BFD.
  431. * BFD canonical format:                 Mechanism.
  432. * BFD requirements:                     BFD.
  433. * binary input files:                   Other Commands.
  434. * binary input format:                  Invocation.
  435. * BLOCK(ALIGN):                         Section Options.
  436. * BYTE(EXPRESSION):                     Section Contents.
  437. * command files:                        Commands.
  438. * command line:                         Invocation.
  439. * commands, fundamental:                Scripts.
  440. * comments:                             Scripts.
  441. * common allocation:                    Invocation.
  442. * common allocation:                    Other Commands.
  443. * commons in output:                    Section Contents.
  444. * compatibility, MRI:                   Invocation.
  445. * constructors:                         Invocation.
  446. * contents of a section:                Section Contents.
  447. * CREATE_OBJECT_SYMBOLS:                Section Contents.
  448. * current output location:              Location Counter.
  449. * decimal integers:                     Integers.
  450. * DEFINED(SYMBOL):                      Built-ins.
  451. * deleting local symbols:               Invocation.
  452. * direct output:                        Section Contents.
  453. * discontinuous memory:                 MEMORY.
  454. * dot:                                  Location Counter.
  455. * entry point, defaults:                Entry Point.
  456. * entry point, from command line:       Invocation.
  457. * ENTRY(SYMBOL):                        Entry Point.
  458. * expression evaluation order:          Evaluation.
  459. * expression syntax:                    Expressions.
  460. * expression, absolute:                 Built-ins.
  461. * filename symbols:                     Section Contents.
  462. * files and sections, section defn:     Section Contents.
  463. * files, including in output sections:  Section Contents.
  464. * fill pattern, entire section:         Section Options.
  465. * FILL(EXPRESSION):                     Section Contents.
  466. * first input file:                     Other Commands.
  467. * first instruction:                    Entry Point.
  468. * FLOAT:                                Other Commands.
  469. * FORCE_COMMON_ALLOCATION:              Other Commands.
  470. * format, output file:                  Other Commands.
  471. * formats available:                    BFD.
  472. * functions in expression language:     Built-ins.
  473. * fundamental script commands:          Scripts.
  474. * GNU linker:                           Overview.
  475. * GNUTARGET:                            Other Commands.
  476. * header size:                          Built-ins.
  477. * hexadecimal integers:                 Integers.
  478. * holes:                                Location Counter.
  479. * holes, filling:                       Section Contents.
  480. * incremental link:                     Invocation.
  481. * INPUT ( FILES ):                      Other Commands.
  482. * input file format:                    Other Commands.
  483. * input filename symbols:               Section Contents.
  484. * input files, displaying:              Invocation.
  485. * input files, section defn:            Section Contents.
  486. * input format:                         Invocation.
  487. * input format:                         Invocation.
  488. * input sections to output section:     Section Contents.
  489. * integer notation:                     Integers.
  490. * integer suffixes:                     Integers.
  491. * internal object-file format:          Mechanism.
  492. * K and M integer suffixes:             Integers.
  493. * l =:                                  MEMORY.
  494. * L, deleting symbols beginning:        Invocation.
  495. * layout of output file:                Scripts.
  496. * lazy evaluation:                      Evaluation.
  497. * len =:                                MEMORY.
  498. * LENGTH =:                             MEMORY.
  499. * link map:                             Invocation.
  500. * local symbols, deleting:              Invocation.
  501. * location counter:                     Location Counter.
  502. * LONG(EXPRESSION):                     Section Contents.
  503. * M and K integer suffixes:             Integers.
  504. * machine architecture, output:         Other Commands.
  505. * MEMORY:                               MEMORY.
  506. * memory region attributes:             MEMORY.
  507. * memory regions and sections:          Section Options.
  508. * MRI compatibility:                    MRI.
  509. * names:                                Symbols.
  510. * naming memory regions:                MEMORY.
  511. * naming output sections:               Section Definition.
  512. * naming the output file:               Invocation.
  513. * naming the output file:               Other Commands.
  514. * negative integers:                    Integers.
  515. * NEXT(EXP):                            Built-ins.
  516. * NMAGIC:                               Invocation.
  517. * NOFLOAT:                              Other Commands.
  518. * NOLOAD:                               Section Options.
  519. * Non constant expression:              Assignment.
  520. * o =:                                  MEMORY.
  521. * object file management:               BFD.
  522. * object files:                         Invocation.
  523. * octal integers:                       Integers.
  524. * OMAGIC:                               Invocation.
  525. * opening object files:                 BFD outline.
  526. * Operators for arithmetic:             Operators.
  527. * options:                              Invocation.
  528. * org =:                                MEMORY.
  529. * ORIGIN =:                             MEMORY.
  530. * OUTPUT ( FILENAME ):                  Other Commands.
  531. * output file after errors:             Invocation.
  532. * output file layout:                   Scripts.
  533. * OUTPUT_ARCH ( BFDNAME ):              Other Commands.
  534. * OUTPUT_FORMAT ( BFDNAME ):            Other Commands.
  535. * partial link:                         Invocation.
  536. * path for libraries:                   Other Commands.
  537. * precedence in expressions:            Operators.
  538. * prevent unnecessary loading:          Section Options.
  539. * quoted symbol names:                  Symbols.
  540. * read-only text:                       Invocation.
  541. * read/write from cmd line:             Invocation.
  542. * regions of memory:                    MEMORY.
  543. * relaxing addressing modes:            Invocation.
  544. * relocatable and absolute symbols:     Assignment.
  545. * relocatable output:                   Invocation.
  546. * requirements for BFD:                 BFD.
  547. * rounding up location counter:         Built-ins.
  548. * scaled integers:                      Integers.
  549. * script files:                         Invocation.
  550. * scripts on command line:              Invocation.
  551. * search directory, from cmd line:      Invocation.
  552. * search path, libraries:               Other Commands.
  553. * SEARCH_DIR ( PATH ):                  Other Commands.
  554. * section address:                      Built-ins.
  555. * section address:                      Section Options.
  556. * section alignment:                    Section Options.
  557. * section definition:                   Section Definition.
  558. * section defn, full syntax:            Section Options.
  559. * section fill pattern:                 Section Options.
  560. * section size:                         Built-ins.
  561. * section start:                        Section Options.
  562. * section, assigning to memory region:  Section Options.
  563. * SECTIONS:                             SECTIONS.
  564. * segment origins, cmd line:            Invocation.
  565. * semicolon:                            Assignment.
  566. * SHORT(EXPRESSION):                    Section Contents.
  567. * SIZEOF(SECTION):                      Built-ins.
  568. * sizeof_headers:                       Built-ins.
  569. * SIZEOF_HEADERS:                       Built-ins.
  570. * standard Unix system:                 Invocation.
  571. * start address, section:               Section Options.
  572. * start of execution:                   Entry Point.
  573. * STARTUP ( FILENAME ):                 Other Commands.
  574. * strip all symbols:                    Invocation.
  575. * strip debugger symbols:               Invocation.
  576. * suffixes for integers:                Integers.
  577. * symbol defaults:                      Built-ins.
  578. * symbol definition, scripts:           Assignment.
  579. * symbol names:                         Symbols.
  580. * symbol tracing:                       Invocation.
  581. * symbol-only input:                    Invocation.
  582. * symbols, from command line:           Invocation.
  583. * symbols, relocatable and absolute:    Assignment.
  584. * synthesizing linker:                  Invocation.
  585. * TARGET ( FORMAT ):                    Other Commands.
  586. * unallocated address, next:            Built-ins.
  587. * undefined symbol:                     Invocation.
  588. * uninitialized data:                   Section Contents.
  589. * unspecified memory:                   Section Contents.
  590. * variables, defining:                  Assignment.
  591. * verbose:                              Invocation.
  592. * version:                              Invocation.
  593. * what is this?:                        Overview.
  594. * [ SECTIONS ]:                         Section Contents.
  595.